00076c0c375a8a34cafe6539a6603cc360116721,src/commons/org/codehaus/groovy/grails/commons/DefaultGrailsControllerClass.java,DefaultGrailsControllerClass,isInterceptedAfter,#GroovyObject#String#,291

Before Change



	public boolean isInterceptedAfter(GroovyObject controller, String action) {
		final Map controllerProperties = DefaultGroovyMethods.getProperties(controller);
		return isIntercepted(controllerProperties.get(AFTER_INTERCEPTOR),action);
	}

	public Closure getBeforeInterceptor(GroovyObject controller) {

After Change


	}

	public boolean isInterceptedAfter(GroovyObject controller, String action) {
        return controller.getMetaClass().hasProperty(controller, AFTER_INTERCEPTOR) != null && isIntercepted(controller.getProperty(AFTER_INTERCEPTOR), action);
	}

	public Closure getBeforeInterceptor(GroovyObject controller) {